Skip to content

Commit b79a25c

Browse files
committed
Make fringe::Context private.
1 parent 7a3af72 commit b79a25c

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ It provides high-level, safe abstractions:
1616
* an implementation of internal iterators, also known as generators,
1717
[Generator](https://nathan7.github.io/libfringe/fringe/generator/struct.Generator.html).
1818

19-
It also provides low-level, *very* unsafe building blocks:
20-
* a flexible, low-level context-swapping mechanism,
21-
[Context](https://nathan7.github.io/libfringe/fringe/struct.Context.html);
19+
It also provides low-level, unsafe building blocks:
2220
* a trait that can be implemented by stack allocators,
2321
[Stack](https://nathan7.github.io/libfringe/fringe/struct.Stack.html);
2422
* a stack allocator based on anonymous memory mappings with guard pages,

src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@
1616
//! * an implementation of internal iterators, also known as generators,
1717
//! [Generator](generator/struct.Generator.html).
1818
//!
19-
//! It also provides low-level, *very* unsafe building blocks:
19+
//! It also provides low-level, unsafe building blocks:
2020
//!
21-
//! * a flexible, low-level context-swapping mechanism,
22-
//! [Context](struct.Context.html);
2321
//! * a trait that can be implemented by stack allocators,
2422
//! [Stack](struct.Stack.html);
2523
//! * a stack allocator based on anonymous memory mappings with guard pages,
@@ -33,7 +31,6 @@ extern crate std;
3331

3432
pub use stack::Stack;
3533
pub use stack::GuardedStack;
36-
pub use context::Context;
3734
pub use generator::Generator;
3835

3936
#[cfg(any(unix, windows))]

0 commit comments

Comments
 (0)