metanorma / pubid-iso

Implementation of ISO pubid
BSD 2-Clause "Simplified" License
1 stars 0 forks source link

Space after slash for "60.60" stage #158

Closed mico closed 1 year ago

mico commented 1 year ago
> Pubid::Iso::Identifier.new(publisher: :ISO, number: 125, stage: "60.60").to_s
=> "ISO/ 125" # Should have been "ISO 125"
Pubid::Iso::Identifier.new(publisher: :ISO, number: 125, stage: "60.60", type: :is).to_s
=> "ISO/IS 125" # Should have been "ISO 125"

Please make sure these two cases are added to the specs.

Originally posted by @ronaldtse in https://github.com/metanorma/pubid-iso/issues/151#issuecomment-1299587111