Skip to content

Commit 13443a0

Browse files
committed
Rename remaining mentions of old name in documentation comments
1 parent 74e5e08 commit 13443a0

File tree

17 files changed

+21
-21
lines changed

17 files changed

+21
-21
lines changed

sxbp/initialise.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides basic functions to initialise a spiral.

sxbp/initialise.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides basic functions to initialise a spiral.

sxbp/plot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides functions for plotting and caching the points

sxbp/plot.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides functions for plotting and caching the points

sxbp/render.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides functions for rendering a spiral to a bitmap.

sxbp/render.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides functions for rendering a spiral to a bitmap.

sxbp/render_backends/backend_pbm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides functionality to render a bitmap struct to a

sxbp/render_backends/backend_pbm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides functionality to render a bitmap struct to a

sxbp/render_backends/backend_png.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides functionality to render a bitmap struct to a
66
* PNG image (stored in a buffer).
77
*
88
* NOTE: PNG output support may have not been enabled in the compiled version
9-
* of libsaxbospiral that you have. If support is not enabled, the library
9+
* of libsxbp that you have. If support is not enabled, the library
1010
* boolean constant SXBP_PNG_SUPPORT will be set to false and the one public
1111
* function defined in this library will return SXBP_NOT_IMPLEMENTED.
1212
*
@@ -167,9 +167,9 @@ sxbp_status_t sxbp_render_backend_png(
167167
metadata[2].text = "Copyright Joshua Saxby";
168168
metadata[3].key = "Software";
169169
// SAXBOSPIRAL_VERSION_STRING is a macro that expands to a double-quoted string
170-
metadata[3].text = "libsaxbospiral v" SAXBOSPIRAL_VERSION_STRING;
170+
metadata[3].text = "libsxbp v" SAXBOSPIRAL_VERSION_STRING;
171171
metadata[4].key = "Comment";
172-
metadata[4].text = "https://github.com/saxbophone/libsaxbospiral";
172+
metadata[4].text = "https://github.com/saxbophone/libsxbp";
173173
// set compression of each metadata key
174174
for(size_t i = 0; i < 5; i++) {
175175
metadata[i].compression = PNG_TEXT_COMPRESSION_NONE;

sxbp/render_backends/backend_png.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
2-
* This source file forms part of libsaxbospiral, a library which generates
2+
* This source file forms part of libsxbp, a library which generates
33
* experimental 2D spiral-like shapes based on input binary data.
44
*
55
* This compilation unit provides functionality to render a bitmap struct to a
66
* PNG image (stored in a buffer).
77
*
88
* NOTE: PNG output support may have not been enabled in the compiled version
9-
* of libsaxbospiral that you have. If support is not enabled, the library
9+
* of libsxbp that you have. If support is not enabled, the library
1010
* boolean constant SXBP_PNG_SUPPORT will be set to false and the one public
1111
* function defined in this library will return SXBP_NOT_IMPLEMENTED.
1212
*

0 commit comments

Comments
 (0)