1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +00:00

LibPDF: Fix a typo in a function name

...and while here, a comment typo too.
This commit is contained in:
Nico Weber 2023-07-05 13:39:53 -04:00 committed by Linus Groh
parent 1177308afb
commit 93357a8b70
2 changed files with 3 additions and 3 deletions

View file

@ -119,10 +119,10 @@ public:
return cast_to<T>(TRY(resolve(value)));
}
/// Whether this Document is reasdy to resolve references, which is usually
/// Whether this Document is ready to resolve references, which is usually
/// true, except just before the XRef table is parsed (and while the linearization
/// dict is being read).
bool can_resolve_refefences() { return m_parser->can_resolve_references(); }
bool can_resolve_references() { return m_parser->can_resolve_references(); }
private:
explicit Document(NonnullRefPtr<DocumentParser> const& parser);