Skip to content

Commit

Permalink
Fixed minor comment typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason McCampbell (Enthought, Inc) committed Jun 1, 2011
1 parent 4bb3db8 commit c2a7750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/NumpyDotNet/NpyArray.cs
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ public static ndarray Zeros(long[] shape, dtype type = null, NpyDefs.NPY_ORDER o
/// arrays it's a pointer to a boxed zero.
/// </summary>
/// <param name="arr">Array to take the dtype from</param>
/// <returns>Point to memory, must be free'd using NpyDataMem_FREE by the caller</returns>
/// <returns>Pointer to memory, must be free'd using NpyDataMem_FREE by the caller</returns>
public static IntPtr Zero(ndarray arr) {
if (arr.Dtype.HasNames && arr.Dtype.IsObject) {
throw new ArgumentTypeException("Not supported for this data-type");
Expand Down

0 comments on commit c2a7750

Please sign in to comment.