Skip to content

Commit e8ece02

Browse files
committed
Update direct file URLs to refer to the ReactiveCocoa org
1 parent e8df780 commit e8ece02

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Documentation/DifferencesFromRx.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ RAC does not offer protocols that correspond to the `IEnumerable` and
2020
`IObservable` interfaces in .NET. Instead, the functionality is covered by three
2121
main classes:
2222

23-
* **[RACStream](https://github.com/github/ReactiveCocoa/blob/master/ReactiveCocoaFramework/ReactiveCocoa/RACStream.h)**
23+
* **[RACStream](https://github.com/ReactiveCocoa/ReactiveCocoa/blob/master/ReactiveCocoaFramework/ReactiveCocoa/RACStream.h)**
2424
is an abstract class that implements stream operations using a few basic
2525
primitives. The equivalents to generic LINQ operators can generally be found
2626
on this class.
27-
* **[RACSignal](https://github.com/github/ReactiveCocoa/blob/master/ReactiveCocoaFramework/ReactiveCocoa/RACSignal.h)**
27+
* **[RACSignal](https://github.com/ReactiveCocoa/ReactiveCocoa/blob/master/ReactiveCocoaFramework/ReactiveCocoa/RACSignal.h)**
2828
is a concrete subclass of `RACStream` that implements a _push-driven_ stream,
2929
much like `IObservable`. Time-based operators, or methods dealing with the
3030
`completed` and `error` events, can be found on this class or in the
31-
[RACSignal+Operations](https://github.com/github/ReactiveCocoa/blob/master/ReactiveCocoaFramework/ReactiveCocoa/RACSignal%2BOperations.h)
31+
[RACSignal+Operations](https://github.com/ReactiveCocoa/ReactiveCocoa/blob/master/ReactiveCocoaFramework/ReactiveCocoa/RACSignal%2BOperations.h)
3232
category upon it.
33-
* **[RACSequence](https://github.com/github/ReactiveCocoa/blob/master/ReactiveCocoaFramework/ReactiveCocoa/RACSequence.h)**
33+
* **[RACSequence](https://github.com/ReactiveCocoa/ReactiveCocoa/blob/master/ReactiveCocoaFramework/ReactiveCocoa/RACSequence.h)**
3434
is a concrete subclass of `RACStream` that implements a _pull-driven_ stream,
3535
much like `IEnumerable`.
3636

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Check out the [announcement blog post](https://github.com/blog/1107-reactivecoco
77
## Getting Started
88
RAC uses some submodules. Once you've cloned the repository, be sure to run `git submodule update --recursive --init` to pull them all down.
99

10-
Then checkout the [Mac](https://github.com/github/ReactiveCocoa/tree/master/GHAPIDemo) or [iOS](https://github.com/github/ReactiveCocoa/tree/master/RACiOSDemo) demos.
10+
Then checkout the [Mac](https://github.com/ReactiveCocoa/ReactiveCocoa/tree/master/GHAPIDemo) or [iOS](https://github.com/ReactiveCocoa/ReactiveCocoa/tree/master/RACiOSDemo) demos.
1111

1212
## Examples
1313
Observe changes to properties:
@@ -78,7 +78,7 @@ RAC(self.imageView.image) = [[[[client
7878
## Foundation Support
7979
There are a number of categories that provide RAC-based bridges to standard Foundation classes. They're not included as part of the framework proper in order to keep the framework size down.
8080

81-
You can find them in [RACExtensions](https://github.com/github/ReactiveCocoa/tree/master/RACExtensions). To use them, simply add them directly to your project as needed.
81+
You can find them in [RACExtensions](https://github.com/ReactiveCocoa/ReactiveCocoa/tree/master/RACExtensions). To use them, simply add them directly to your project as needed.
8282

8383
## License
8484
MIT License

0 commit comments

Comments
 (0)