Skip to content

Commit bdb7583

Browse files
committed
Fix broken links and add "Non-blocking buffered write" link for another Fortran version.
1 parent 475074c commit bdb7583

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

wiki/QuickTutorial.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h2>Introduction</h2>
2828
The most distinguishing feature of both netCDF and PnetCDF is the <em>bi-modal</em> programming interface. An application creating a file will first enter <em>define mode</em>, in which it can describe all attributes, dimensions, types and structures of variables. The program will then exit "define mode" and enter <em>data mode</em>, in which it actually performs I/O. We'll see that often in the following examples. This "declaration-before-use" model can be a little restrictive, but does allow for some aggressive optimization when carrying out I/O.
2929
</p>
3030
<p>
31-
This brief tutorial was written with the assumption the reader has some familiarity with serial netcdf. If serial netcdf concepts like attributes, dimensions, and variables are not familiar, start with the <a href="http://www.unidata.ucar.edu/software/netcdf/docs/netcdf/">NetCDF Users Guide</a>.
31+
This brief tutorial was written with the assumption the reader has some familiarity with serial netcdf. If serial netcdf concepts like attributes, dimensions, and variables are not familiar, start with the <a href="http://www.unidata.ucar.edu/software/netcdf/docs/">NetCDF Users Guide</a>.
3232
</p>
3333
<h2 id="IOfromMaster">I/O from Master</h2>
3434
<p>
@@ -113,7 +113,7 @@ <h2 id="Bufferedwriteinterface">Buffered write interface</h2>
113113
Examples:
114114
<a href="https://github.com/Parallel-NetCDF/PnetCDF/blob/master/examples/tutorial/pnetcdf-write-buffered.c">Non-blocking buffered write in C</a>
115115
and
116-
<a href="https://github.com/Parallel-NetCDF/PnetCDF/blob/master/examples/tutorial/pnetcdf-write-bufferedf.F">Non-blocking buffered write in Fortran</a>
116+
<a href="https://github.com/Parallel-NetCDF/PnetCDF/blob/master/examples/tutorial/pnetcdf-write-bufferedf.f90">Non-blocking buffered write in Fortran 90</a> and <a href="https://github.com/Parallel-NetCDF/PnetCDF/blob/master/examples/tutorial/pnetcdf-write-bufferedf77.f">FORTRAN 77</a>
117117
</p>
118118
<hr>
119119
Return to <a href=https://parallel-netcdf.github.io>PnetCDF Home</a>

0 commit comments

Comments
 (0)