Commit 947e2b69 authored by alat-rights's avatar alat-rights
Browse files

Fixed typo, 'smile' -> 'SMILES'

parent 5f649d9f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -119,12 +119,12 @@ class OneHotFeaturizer(Featurizer):
    return self._featurize_string(smiles)  # Use string featurization.

  def pad_smile(self, smiles: str) -> str:
    """Pad smile string to `self.pad_length`
    """Pad SMILES string to `self.pad_length`

    Parameters
    ----------
    smile: str
      The smile string to be padded.
    smiles: str
      The SMILES string to be padded.

    Returns
    -------