Skip to content

Commit

Permalink
Fix some broken links that Elliot found
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad Chamberlain committed Oct 17, 2017
1 parent fd421e2 commit a2270cf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
30 changes: 15 additions & 15 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2220,9 +2220,9 @@ Highlights
* revamped 'chpldoc' and used it to create web docs for all standard modules
(see https://chapel-lang.org/docs/latest/)
* added a new FileSystem standard module supporting operations on files/dirs
(see https://chapel-lang.org/docs/latest/modules/standard/FileSystem.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/FileSystem.html)
* added a new FFTW standard module supporting key FFTW routines
(see https://chapel-lang.org/docs/latest/modules/standard/FFTW.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/FFTW.html)
* added task intents to forall loops, plus new intents such as 'in' and 'reduce'
(see 'Semantic Changes' and 'New Features' sections below)
* added support for standalone parallel iterators, used by non-zippered foralls
Expand Down Expand Up @@ -2313,31 +2313,31 @@ New Interoperability Features
Standard Library/Modules
------------------------
* added a new module, FileSystem, containing numerous file system operations
(see https://chapel-lang.org/docs/latest/modules/standard/FileSystem.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/FileSystem.html)
* added support for key 64-bit FFTW routines (single- and multi-threaded)
(see https://chapel-lang.org/docs/latest/modules/standard/FFTW.html and
https://chapel-lang.org/docs/latest/modules/standard/FFTW_MT.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/FFTW.html and
https://chapel-lang.org/docs/1.11/modules/standard/FFTW_MT.html)
* added parity() and rotate() operations to the BitOps module
(see https://chapel-lang.org/docs/latest/modules/standard/BitOps.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/BitOps.html)
* added parallel versions of the glob(), walkdirs(), and findfiles() iterators
(see https://chapel-lang.org/docs/latest/modules/standard/FileSystem.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/FileSystem.html)
* started a new module, Path, supporting realPath(), curDir, parentDir, pathSep
(see https://chapel-lang.org/docs/latest/modules/standard/Path.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/Path.html)
* added a new module, Assert, defining a simple assertion capability
(see https://chapel-lang.org/docs/latest/modules/standard/Assert.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/Assert.html)
* added support for C types c_ptrdiff, c_uintptr, and c_intptr to SysCTypes.chpl
(see https://chapel-lang.org/docs/latest/modules/standard/gen/doc/SysCTypes.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/gen/doc/SysCTypes.html)
* changed cwd() and chdir() from standalone functions to locale methods
(see https://chapel-lang.org/docs/latest/modules/standard/FileSystem.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/FileSystem.html)
* made mkdir(parents=true) behave more like 'mkdir -p'
* added a .safeCast() method to integer types to value-check downcasts
(see https://chapel-lang.org/docs/latest/modules/standard/Types.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/Types.html)
* changed min(t) and max(t) to return 'param' values for integral types 't'
(see https://chapel-lang.org/docs/latest/modules/standard/Types.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/Types.html)
* parameterized RandomStream by an 'eltType' and updated its methods accordingly
(see https://chapel-lang.org/docs/latest/modules/standard/Random.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/Random.html)
* removed the parSafe arguments from RandomStream's methods in the Random module
(see https://chapel-lang.org/docs/latest/modules/standard/Random.html)
(see https://chapel-lang.org/docs/1.11/modules/standard/Random.html)
* added support for escaping pattern-style format strings using %{}
(e.g., "writef("#%{##}", 10)" => "#10")
* added support for readf()/writef() of octal values
Expand Down
2 changes: 1 addition & 1 deletion spec/Input_and_Output.tex
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ \section{See Library Documentation}
documented in the standard library documentation. See
\url{https://chapel-lang.org/docs/latest/modules/standard/IO.html}
and
\url{https://chapel-lang.org/docs/latest/modules/internal/ChapelIO.html}.
\url{https://chapel-lang.org/docs/latest/builtins/internal/ChapelIO.html}.

2 changes: 1 addition & 1 deletion test/exercises/boundedBuffer/boundedBuffer.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ proc consumer(b: BoundedBuffer, cid: int) {
// with atomics before, refer to the online documentation or ask one
// of the helpers for a hint:
//
// https://chapel-lang.org/docs/latest/builtins/Atomics.html
// https://chapel-lang.org/docs/latest/builtins/internal/Atomics.html
//
// STEP 5 (optional): Compare the performance of your two versions
// (note: you may want to turn off the --noisy and/or --verbose
Expand Down

0 comments on commit a2270cf

Please sign in to comment.