Skip to content

Commit

Permalink
Remove master branch doc link in readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
c0gent committed Feb 7, 2019
1 parent 9a0ec75 commit d9c2e1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ocl
===

#### Documentation: [Release](https://docs.rs/ocl)/[Master](http://docs.cogciprocate.com/ocl/ocl/) | [Change Log](https://github.com/cogciprocate/ocl/blob/master/RELEASES.md)
#### [Documentation](https://docs.rs/ocl) | [Change Log](https://github.com/cogciprocate/ocl/blob/master/RELEASES.md)

[![](http://meritbadge.herokuapp.com/ocl)](https://crates.io/crates/ocl) [![](https://docs.rs/ocl/badge.svg)](https://docs.rs/ocl)
[![Supported platforms](https://img.shields.io/badge/platform-windows%20%7C%20macos%20%7C%20linux%20%7C%20bsd-orange.svg)](https://en.wikipedia.org/wiki/Cross-platform)
Expand Down
2 changes: 2 additions & 0 deletions ocl/src/standard/program.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ impl<'b> ProgramBuilder<'b> {
/// Adds the contents of a file to the program.
//
// TODO: Deprecate
// #[deprecated(since = "0.19.2", note = "Use `::source_file` instead.")]
pub fn src_file<'a, P: Into<PathBuf>>(&'a mut self, file_path: P) -> &'a mut ProgramBuilder<'b> {
self.source_file(file_path)
}
Expand All @@ -266,6 +267,7 @@ impl<'b> ProgramBuilder<'b> {
/// Adds raw text to the program source.
//
// TODO: Deprecate
// #[deprecated(since = "0.19.2", note = "Use `::source` instead.")]
pub fn src<'a, S: Into<String>>(&'a mut self, src: S) -> &'a mut ProgramBuilder<'b> {
self.source(src)
}
Expand Down

0 comments on commit d9c2e1e

Please sign in to comment.