Skip to content

Commit

Permalink
more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
VSadov committed Mar 14, 2017
1 parent 6d29e1b commit f36c1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proposals/span-safety.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Span<T> Caller()

if (TodaIsNotFriday())
{
// callee can "poison" any assumption that we can made about safeToReturn
// callee can "poison" any assumption that we have made about safeToReturn
Callee(ref safeToReturn);
}

Expand All @@ -59,7 +59,7 @@ Span<T> Caller()

void Callee(ref Span<int> arg1)
{
// local refernces are escaping.
// local references are escaping.
// what rule would disallow this?
arg1 = new Span<T>(localloc(...));
}
Expand Down

0 comments on commit f36c1fe

Please sign in to comment.