Skip to content

Commit

Permalink
Removed unneeded lines
Browse files Browse the repository at this point in the history
  • Loading branch information
rohandkn committed Jun 9, 2021
1 parent f38bda5 commit bfde770
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Autocoders/Python/schema/default/serializable_schema.rng
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@
<element name="member">
<a:documentation>Item define in the serializable object.</a:documentation>

<!-- Optional element -->

<optional>
<a:documentation>Optional default value.</a:documentation>
<element name="default">
Expand Down Expand Up @@ -121,8 +123,6 @@
</attribute>
</optional>



<!-- Type, size, and internal enum define are defined within this ref -->
<ref name="type_size_choice_define"/>
</element>
Expand Down

1 comment on commit bfde770

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Misspellings found, please review:

  • getb
  • getf
  • geti
  • getstr
To accept these changes, run the following commands from this repository on this branch
pushd $(git rev-parse --show-toplevel)
perl -e '
my $new_expect_file=".github/actions/spelling/expect.txt";
use File::Path qw(make_path);
make_path ".github/actions/spelling";
open FILE, q{<}, $new_expect_file; chomp(my @words = <FILE>); close FILE;
my @add=qw('"getb getf geti getstr "');
my %items; @items{@words} = @words x (1); @items{@add} = @add x (1);
@words = sort {lc($a) cmp lc($b)} keys %items;
open FILE, q{>}, $new_expect_file; for my $word (@words) { print FILE "$word\n" if $word =~ /\w/; };
close FILE;'
popd

Please sign in to comment.