Skip to content

Instantly share code, notes, and snippets.

@tsing
Created May 12, 2016 04:59
Show Gist options
  • Save tsing/afa63600f4aa41c729f3eb2017c862eb to your computer and use it in GitHub Desktop.
Save tsing/afa63600f4aa41c729f3eb2017c862eb to your computer and use it in GitHub Desktop.
diff --git a/lib-0.8.2/UnicodeBidi.js.flow b/lib/UnicodeBidi.js.flow
index d55ca3b..419ba32 100644
--- a/lib-0.8.2/UnicodeBidi.js.flow
+++ b/lib/UnicodeBidi.js.flow
@@ -25,7 +25,7 @@ const UnicodeBidiDirection = require('./UnicodeBidiDirection');
const invariant = require('./invariant');
-import type { BidiDirection } from 'UnicodeBidiDirection';
+import type { BidiDirection } from './UnicodeBidiDirection';
/**
* RegExp ranges of characters with a *Strong* Bidi_Class value.
diff --git a/lib-0.8.2/UnicodeBidiService.js.flow b/lib/UnicodeBidiService.js.flow
index 0e71546..236a2f3 100644
--- a/lib-0.8.2/UnicodeBidiService.js.flow
+++ b/lib/UnicodeBidiService.js.flow
@@ -48,7 +48,7 @@ const UnicodeBidiDirection = require('./UnicodeBidiDirection');
const invariant = require('./invariant');
-import type { BidiDirection } from 'UnicodeBidiDirection';
+import type { BidiDirection } from './UnicodeBidiDirection';
class UnicodeBidiService {
diff --git a/lib-0.8.2/equalsSet.js.flow b/lib/equalsSet.js.flow
index 26a354f..ea97480 100644
--- a/lib-0.8.2/equalsSet.js.flow
+++ b/lib/equalsSet.js.flow
@@ -13,7 +13,7 @@
'use strict';
-import type Set from 'Set';
+import type Set from './Set';
var everySet = require('./everySet');
diff --git a/lib-0.8.2/everySet.js.flow b/lib/everySet.js.flow
index a91c014..b75d83a 100644
--- a/lib-0.8.2/everySet.js.flow
+++ b/lib/everySet.js.flow
@@ -13,7 +13,7 @@
'use strict';
-import type Set from 'Set';
+import type Set from './Set';
/**
* The everySet() method tests whether all elements in the given Set pass the
diff --git a/lib-0.8.2/someSet.js.flow b/lib/someSet.js.flow
index dee00c5..a7845ab 100644
--- a/lib-0.8.2/someSet.js.flow
+++ b/lib/someSet.js.flow
@@ -13,7 +13,7 @@
'use strict';
-import type Set from 'Set';
+import type Set from './Set';
/**
* The someSet() method tests whether some elements in the given Set pass the
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment