Skip to content

Commit

Permalink
Fixes a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed May 21, 2017
1 parent 8369363 commit f831ec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RxSwift/Rx.swift
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func decrementChecked(_ i: inout Int) throws -> Int {
if count > 1 {
synchronizationError(
"⚠️ Reentrancy anomaly was detected. ⚠️\n" +
" > Debuging: To debug this issue you can set a breakpoint in \(#file):\(#line) and observe the call stack.\n" +
" > Debugging: To debug this issue you can set a breakpoint in \(#file):\(#line) and observe the call stack.\n" +
" > Problem: This behavior is breaking the observable sequence grammar. `next (error | completed)?`\n" +
" This behavior breaks the grammar because there is overlapping between sequence events.\n" +
" Observable sequence is trying to send an event before sending of previous event has finished.\n" +
Expand All @@ -110,7 +110,7 @@ func decrementChecked(_ i: inout Int) throws -> Int {
if _threads.count > 1 {
synchronizationError(
"⚠️ Synchronization anomaly was detected. ⚠️\n" +
" > Debuging: To debug this issue you can set a breakpoint in \(#file):\(#line) and observe the call stack.\n" +
" > Debugging: To debug this issue you can set a breakpoint in \(#file):\(#line) and observe the call stack.\n" +
" > Problem: This behavior is breaking the observable sequence grammar. `next (error | completed)?`\n" +
" This behavior breaks the grammar because there is overlapping between sequence events.\n" +
" Observable sequence is trying to send an event before sending of previous event has finished.\n" +
Expand Down

0 comments on commit f831ec3

Please sign in to comment.