Skip to content

Commit

Permalink
[string/encoding] Adding missing =back pod statements
Browse files Browse the repository at this point in the history
This fixes pod errors found by podchecker
  • Loading branch information
Paul Cochrane authored and Reini Urban committed Mar 10, 2014
1 parent 63def66 commit 29dd942
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/string/encoding.c
Expand Up @@ -498,6 +498,11 @@ Parrot_default_encoding(SHIM_INTERP)
return Parrot_default_encoding_ptr;
}

/*
=back
*/

/*
* Local variables:
Expand Down
5 changes: 5 additions & 0 deletions src/string/encoding/ascii.c
Expand Up @@ -444,6 +444,11 @@ static STR_VTABLE Parrot_ascii_encoding = {

STR_VTABLE *Parrot_ascii_encoding_ptr = &Parrot_ascii_encoding;

/*
=back
*/

/*
* Local variables:
Expand Down
5 changes: 5 additions & 0 deletions src/string/encoding/binary.c
Expand Up @@ -242,6 +242,11 @@ static STR_VTABLE Parrot_binary_encoding = {

STR_VTABLE *Parrot_binary_encoding_ptr = &Parrot_binary_encoding;

/*
=back
*/

/*
* Local variables:
Expand Down
5 changes: 5 additions & 0 deletions src/string/encoding/latin1.c
Expand Up @@ -472,6 +472,11 @@ static STR_VTABLE Parrot_latin1_encoding = {

STR_VTABLE *Parrot_latin1_encoding_ptr = &Parrot_latin1_encoding;

/*
=back
*/

/*
* Local variables:
Expand Down
5 changes: 5 additions & 0 deletions src/string/encoding/null.c
Expand Up @@ -180,6 +180,11 @@ static STR_VTABLE Parrot_null_encoding = {

STR_VTABLE *Parrot_null_encoding_ptr = &Parrot_null_encoding;

/*
=back
*/

/*
* Local variables:
Expand Down
6 changes: 6 additions & 0 deletions src/string/encoding/shared.c
Expand Up @@ -1684,6 +1684,12 @@ unicode_titlecase_first(PARROT_INTERP, SHIM(const STRING *src))
"Unicode titlecase_first not implemented");
}

/*
=back
*/


/*
* Local variables:
Expand Down

0 comments on commit 29dd942

Please sign in to comment.